javascript01輸出方法
在head區域內,程式需撰寫在script環境中
可用視窗事件、或是寫入html、或是後臺控制台中
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>01js輸出的方式</title>
<!-- js程式碼要寫在script中 -->
<script type="text/javascript">
// 跳出警告視窗
alert("Hello World");
// 在頁面寫入內容
document.write("由JS寫入的內容");
// 在後台控制台輸出內容
console.log("後台輸出內容");
</script>
</head>
<body>
</body>